home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / bcfamily / source / kbdfocus.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-12  |  877 b   |  52 lines

  1. //
  2. //      *******************************************************************
  3. //        JdeBP C++ Library Routines          General Public Licence v1.00
  4. //            Copyright (c) 1991,1992     Jonathan de Boyne Pollard
  5. //      *******************************************************************
  6. //
  7. // Part of FamAPI.LIB
  8. //
  9.  
  10. #include "famapi.h"
  11. #include "dosdos.h"
  12.  
  13. //
  14. //    Dummy open function
  15. //
  16. USHORT _APICALL
  17. KbdOpen    ( USHORT far *KbdHandle )
  18. {
  19.     *KbdHandle = 0 ;
  20.     return NO_ERROR ;
  21. }
  22.  
  23. #pragma argsused
  24. //
  25. //    Dummy close function
  26. //
  27. USHORT _APICALL
  28. KbdClose ( USHORT KbdHandle )
  29. {
  30.     return NO_ERROR ;
  31. }
  32.  
  33. #pragma argsused
  34. //
  35. //    Dummy get focus
  36. //
  37. USHORT _APICALL
  38. KbdGetFocus ( USHORT NoWait,
  39.               USHORT KbdHandle )
  40. {
  41.     return NO_ERROR ;
  42. }
  43.  
  44. #pragma argsused
  45. //
  46. //    Dummy free focus
  47. //
  48. USHORT _APICALL
  49. KbdFreeFocus ( USHORT KbdHandle )
  50. {
  51.     return NO_ERROR ;
  52. }